void gtk_container_propagate_draw (GtkContainer *container,
GtkWidget *child,
cairo_t *cr);
-void gtk_container_propagate_expose (GtkContainer *container,
- GtkWidget *child,
- GdkEventExpose *event);
void gtk_container_set_focus_chain (GtkContainer *container,
GList *focusable_widgets);
{
GtkTextViewChild *vc = tmp_list->data;
- /* propagate_expose checks that event->window matches
+ /* propagate_draw checks that event->window matches
* child->window
*/
if (!vc->anchor)
* @event: a expose #GdkEvent
*
* Very rarely-used function. This function is used to emit
- * an expose event signals on a widget. This function is not
- * normally used directly. The only time it is used is when
- * propagating an expose event to a child %NO_WINDOW widget, and
- * that is normally done using gtk_container_propagate_expose().
+ * an expose event on a widget. This function is not normally used
+ * directly. The only time it is used is when propagating an expose
+ * event to a child %NO_WINDOW widget, and that is normally done
+ * using gtk_container_propagate_draw().
*
* If you want to force an area of a window to be redrawn,
* use gdk_window_invalidate_rect() or gdk_window_invalidate_region().